home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / RTLWIN32.PAK / LMALERT.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  4KB  |  159 lines

  1. /*++ BUILD Version: 0003    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1991-1996  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     alert.h
  8.  
  9. Abstract:
  10.  
  11.     This file contains structures for communication with the Alerter
  12.     service.
  13.  
  14. Environment:
  15.  
  16.     User Mode - Win32
  17.  
  18. Notes:
  19.  
  20.     You must include LmCons.H before this file, since this file depends
  21.     on values defined in LmCons.H.
  22.  
  23.     ALERT.H includes ALERTMSG.H which defines the alert message numbers
  24.  
  25.  
  26. --*/
  27.  
  28.  
  29. #ifndef _ALERT_
  30. #define _ALERT_
  31. #pragma option -b
  32.  
  33.  
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37.  
  38. //
  39. // Function Prototypes
  40. //
  41.  
  42. NET_API_STATUS NET_API_FUNCTION
  43. NetAlertRaise(
  44.     IN LPCWSTR AlertEventName,
  45.     IN LPVOID  Buffer,
  46.     IN DWORD   BufferSize
  47.     );
  48.  
  49. NET_API_STATUS NET_API_FUNCTION
  50. NetAlertRaiseEx(
  51.     IN LPCWSTR AlertEventName,
  52.     IN LPVOID  VariableInfo,
  53.     IN DWORD   VariableInfoSize,
  54.     IN LPCWSTR ServiceName
  55.     );
  56.  
  57.  
  58. //
  59. //  Data Structures
  60. //
  61.  
  62. typedef struct _STD_ALERT {
  63.     DWORD  alrt_timestamp;
  64.     WCHAR  alrt_eventname[EVLEN + 1];
  65.     WCHAR  alrt_servicename[SNLEN + 1];
  66. }STD_ALERT, *PSTD_ALERT, *LPSTD_ALERT;
  67.  
  68. typedef struct _ADMIN_OTHER_INFO {
  69.     DWORD  alrtad_errcode;
  70.     DWORD  alrtad_numstrings;
  71. }ADMIN_OTHER_INFO, *PADMIN_OTHER_INFO, *LPADMIN_OTHER_INFO;
  72.  
  73. typedef struct _ERRLOG_OTHER_INFO {
  74.     DWORD  alrter_errcode;
  75.     DWORD  alrter_offset;
  76. }ERRLOG_OTHER_INFO, *PERRLOG_OTHER_INFO, *LPERRLOG_OTHER_INFO;
  77.  
  78. typedef struct _PRINT_OTHER_INFO {
  79.     DWORD  alrtpr_jobid;
  80.     DWORD  alrtpr_status;
  81.     DWORD  alrtpr_submitted;
  82.     DWORD  alrtpr_size;
  83. }PRINT_OTHER_INFO, *PPRINT_OTHER_INFO, *LPPRINT_OTHER_INFO;
  84.  
  85. typedef struct _USER_OTHER_INFO {
  86.     DWORD  alrtus_errcode;
  87.     DWORD  alrtus_numstrings;
  88. }USER_OTHER_INFO, *PUSER_OTHER_INFO, *LPUSER_OTHER_INFO;
  89.  
  90. //
  91. // Special Values and Constants
  92. //
  93.  
  94. //
  95. // Name of mailslot to send alert notifications
  96. //
  97. #define ALERTER_MAILSLOT          L"\\\\.\\MAILSLOT\\Alerter"
  98.  
  99. //
  100. // The following macro gives a pointer to the other_info data.
  101. // It takes an alert structure and returns a pointer to structure
  102. // beyond the standard portion.
  103. //
  104.  
  105. #define ALERT_OTHER_INFO(x)    ((LPBYTE)(x) + sizeof(STD_ALERT))
  106.  
  107. //
  108. // The following macro gives a pointer to the variable-length data.
  109. // It takes a pointer to one of the other-info structs and returns a
  110. // pointer to the variable data portion.
  111. //
  112.  
  113. #define ALERT_VAR_DATA(p)      ((LPBYTE)(p) + sizeof(*p))
  114.  
  115. //
  116. //      Names of standard Microsoft-defined alert events.
  117. //
  118.  
  119. #define ALERT_PRINT_EVENT           L"PRINTING"
  120. #define ALERT_MESSAGE_EVENT         L"MESSAGE"
  121. #define ALERT_ERRORLOG_EVENT        L"ERRORLOG"
  122. #define ALERT_ADMIN_EVENT           L"ADMIN"
  123. #define ALERT_USER_EVENT            L"USER"
  124.  
  125. //
  126. //      Bitmap masks for prjob_status field of PRINTJOB.
  127. //
  128.  
  129. // 2-7 bits also used in device status
  130.  
  131. #define PRJOB_QSTATUS       0x3         // Bits 0,1
  132. #define PRJOB_DEVSTATUS     0x1fc       // 2-8 bits
  133. #define PRJOB_COMPLETE      0x4         // Bit 2
  134. #define PRJOB_INTERV        0x8         // Bit 3
  135. #define PRJOB_ERROR         0x10        // Bit 4
  136. #define PRJOB_DESTOFFLINE   0x20        // Bit 5
  137. #define PRJOB_DESTPAUSED    0x40        // Bit 6
  138. #define PRJOB_NOTIFY        0x80        // BIT 7
  139. #define PRJOB_DESTNOPAPER   0x100       // BIT 8
  140. #define PRJOB_DELETED       0x8000      // BIT 15
  141.  
  142. //
  143. //      Values of PRJOB_QSTATUS bits in prjob_status field of PRINTJOB.
  144. //
  145.  
  146. #define PRJOB_QS_QUEUED                 0
  147. #define PRJOB_QS_PAUSED                 1
  148. #define PRJOB_QS_SPOOLING               2
  149. #define PRJOB_QS_PRINTING               3
  150.  
  151.  
  152. #ifdef __cplusplus
  153. }
  154. #endif
  155.  
  156. #pragma option -b.
  157.  
  158. #endif // _ALERT_
  159.